Class: com.microstrategy.web.app.taglibs.ThenTag
Usage:
This custom tag is closely related to the IF custom tag family. It will allow to render its body contents if the condition on the parent IF tag returnedTrue. For example:
<web:ifFeature name="accessibility">
<web:then>
This content will be rendered if the feature is enabled for the user
</web:then>
<web:else>
This content will be rendered only if the feature is not enabled for the user.
</web:else>
</web:ifFeature>
No attributes defined